December 17, 2024
Kotlin Multiplatform is growing rapidly, with its ecosystem expanding and the number of libraries increasing by 35% in 2024 alone. However, with more libraries available than ever, finding the right one for your use case and target platforms can still be a challenge. Whether you’re looking for a solution to handle permissions on iOS and […]
December 12, 2024
KotlinConf workshops provide engineers with an opportunity to deepen their Kotlin programming skills. These hands-on sessions focus on real-world projects and solutions, guided by hosts who are either members of the JetBrains Kotlin development team or certified Kotlin trainers. These workshops will take place on May 21, 2025, in Copenhagen, and will cater to various […]
December 5, 2024
KotlinConf has always been about more than just code – it’s where ideas spark, skills develop, and the Kotlin community comes together to share knowledge, connect, and celebrate. While we’re still crafting the 2025 program (stay tuned for the big reveal in February), here are the recordings of last year’s top talks to give you […]
November 27, 2024
The Kotlin 2.1.0 release is out! This version introduces new language features, tooling updates, performance improvements, and important fixes. Here are some additional highlights from this release: For the complete list of changes, refer to What’s new in Kotlin 2.1.0 or the release notes on GitHub. Join the Kotlin 2.1.0 Livestream Do you want to […]
fun main() { val name = "stranger" // Declare your first variable println("Hi, $name!") // ...and use it! print("Current count:") for (i in 0..10) { // Loop over a range from 0 to 10 print(" $i") } }